2603b4282457dee07ca177f393d7746042f9f40b,src/main/java/org/wildfly/security/auth/client/MatchPathRule.java,MatchPathRule,hashCode,#,59

Before Change



    public int hashCode() {
        // our prime is 3923
        return 3923 * pathSpec.hashCode() + parentHashCode();
    }

    private boolean prefixes(String pathSpec) {

After Change



    public int hashCode() {
        // our prime is 3923
        return Util.hashiply(parentHashCode(), 3923, pathSpec.hashCode());
    }

    private boolean prefixes(String pathSpec) {